home *** CD-ROM | disk | FTP | other *** search
/ Komputer for Alle 2002 #4 / K-CD-4-2002.ISO / K-CS.DCR / 00459_Hilite, MouseUp -- Hop.ls < prev    next >
Encoding:
Text File  |  2002-01-25  |  262 b   |  16 lines

  1. on new me
  2.   set the visible of sprite the currentSpriteNum to 0
  3. end
  4.  
  5. on mouseDown
  6.   go(#next)
  7. end
  8.  
  9. on mouseEnter me
  10.   set the visible of sprite (the currentSpriteNum + 1) to 1
  11. end
  12.  
  13. on mouseLeave me
  14.   set the visible of sprite (the currentSpriteNum + 1) to 0
  15. end
  16.